/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ============================================
   BANNER DE CABECERA 
   ============================================ */
.brand-banner {
    background: linear-gradient(135deg, #0d6a75 0%, #0b5a63 100%);
    padding: 1.5rem 4%; /* 4% de margen en cada lado */
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #25D366;
}

/* Efecto de puntos de fondo - centrado */
.brand-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra horizontalmente */
    max-width: 1400px;
    margin-left: 33%; /* Centra el contenedor */
    gap: 2rem;
}

/* Foto 30% - Texto 70% en escritorio */
.banner-image {
    flex: 0 0 auto; /* No crece ni se encoge */
    width: 140px; /* Ancho fijo */
    height: 140px; /* Altura igual al ancho = CÍRCULO */
    border-radius: 50%; /* 50% = redondo */
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para que se ajuste al círculo */
    transition: transform 0.3s ease;
}

.banner-image img:hover {
    transform: scale(1.05);
}

.banner-text {
    flex: 0 0 70%; /* 70% del ancho */
    max-width: 70%;
    color: white;
    text-align: left;
}

.banner-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0,0,0,0.25);
    letter-spacing: -0.5px;
}



/* VIDEO */
.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    padding: 4rem 8%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.video-title  {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.video-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.video-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   AJUSTES RESPONSIVOS - VIDEO (MEJORADOS PARA MÓVIL)
   ============================================ */
@media (max-width: 900px) {
    .video-section {
        padding: 3rem 5%;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1.15rem;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-placeholder {
        height: 300px; /* Ajustado para tablet */
        font-size: 1.3rem;
    }
    
    .video-placeholder::before {
        font-size: 5rem;
    }
}

@media (max-width: 600px) {
    .video-section {
        padding: 2rem 4%;
    }
    
    .video-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .video-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 12px;
    }
    
    /* AJUSTE CLAVE: Altura proporcional en móvil */
    .video-placeholder {
        height: 220px; /* Altura óptima para móviles */
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }
    
    .video-placeholder::before {
        font-size: 3.5rem; /* Emoji más pequeño en móvil */
        opacity: 0.25;
    }
    
    .video-placeholder span {
        text-align: center;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    .video-warning {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .video-warning strong {
        font-size: 0.95rem;
    }
}

/* ============================================
   MÓVIL PEQUEÑO (hasta 400px) - ULTRA COMPACTO
   ============================================ */
@media (max-width: 400px) {
    .video-section {
        padding: 1.5rem 3%;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 0.85rem;
    }
    
    .video-placeholder {
        height: 180px; /* Más compacto para pantallas pequeñas */
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .video-placeholder::before {
        font-size: 3rem;
    }
    
    .video-warning {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   SECCIÓN PRODUCTOS - 1 COLUMNA CENTRADA
   ============================================ */
.products-section {
    padding: 3rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    position: relative;
    box-sizing: border-box;
}

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(37, 211, 102, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.products-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin: 1rem auto;
    border-radius: 2px;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Grid de productos - 1 COLUMNA CENTRADA */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 70%; /* 70% en escritorio */
    margin-left: auto;
    margin-right: auto;
}

/* Tarjeta de producto */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e8f5e9;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 1.3rem;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-header:hover {
    opacity: 0.95;
    transform: scale(1.01);
}

.product-header h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.product-header .tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.4rem;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* CUERPO DE LA TARJETA - OCULTO POR DEFECTO */
.product-body {
    display: none;
    padding: 1.5rem;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.example-box {
    background: #f8f9fa;
    border-left: 4px solid #25D366;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.2rem 0;
}

.example-box h4 {
    font-size: 1.05rem;
    color: #2c7a5f;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.example-box .message-example {
    background: white;
    padding: 0.9rem;
    border-radius: 8px;
    margin-top: 0.7rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    line-height: 1.5;
    overflow-x: auto;
}

.features-list {
    list-style: none;
    margin: 1.2rem 0 0 0;
    padding-left: 0;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.features-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}


/* COMBO */
.combo-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid #25D366;
}

.combo-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.combo-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.combo-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #25D366;
    margin: 1rem 0;
}

.combo-price span {
    font-size: 1.2rem;
    color: #555;
    margin-left: 0.5rem;
}

.combo-savings {
    background: #d4edda;
    color: #155724;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    margin-top: 1rem;
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.buy-button:hover {
    transform: scale(1.05);
}

.buy-button::after {
    content: "";
    margin-left: 0.5rem;
}

/* ============================================
   SECCIÓN FAQ (PREGUNTAS FRECUENTES)
   ============================================ */
.faq-section {
    padding: 4rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin: 1rem auto;
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Contenedor de FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Categorías de FAQ */
.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6a75;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #25D366;
    display: flex;
    align-items: center;
}

.faq-category-title::before {
    content: "📌";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Ítem de FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    border: 2px solid #e8f5e9;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Pregunta (botón) */
.faq-question {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6a75 100%);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
    transform: rotate(180deg);
}

/* Respuesta */
.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    line-height: 1.7;
    color: #444;
    font-size: 1rem;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.faq-answer strong {
    color: #0d6a75;
    font-weight: 700;
}

.faq-answer a {
    color: #25D366;
    text-decoration: underline;
    font-weight: 600;
}

.faq-answer a:hover {
    color: #128C7E;
}

/* Iconos en respuestas */
.faq-answer .warning {
    color: #d9534f;
    font-weight: 700;
}

.faq-answer .check {
    color: #25D366;
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   AJUSTES RESPONSIVOS - FAQ
   ============================================ */
@media (max-width: 900px) {
    .faq-section {
        padding: 3rem 5%;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 2rem 4%;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-category-title {
        font-size: 1.3rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
    
    .faq-answer {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-category-title::before {
        font-size: 1rem;
    }
}

/* ============================================
   AJUSTES RESPONSIVOS - 1 COLUMNA CENTRADA
   ============================================ */
@media (max-width: 900px) {
    /* Tablet: 80% de ancho */
    .products-grid {
        max-width: 80%;
    }
    
    .products-section {
        padding: 2rem 5%;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 1.05rem;
    }
    
    .combo-price {
        font-size: 2.3rem;
    }
    
    .combo-section {
        padding: 2rem;
    }
	
	 /* Tablet: foto arriba del texto */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
		margin-left: 5%;
    }
    
    .banner-image {
        flex: 0 0 auto;
        max-width: 120px;
        width: 120px;
        height: 120px;
        order: 1; /* Foto primero */
    }
    
    .banner-text {
        flex: 0 0 auto;
        max-width: 100%;
        order: 2; /* Texto después */
    }
    
    .banner-text h1 {
        font-size: 2.2rem;
    }
	
}

@media (max-width: 600px) {
	
	.banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
		margin-top: -15px;
		margin-left: 1%;
    }
    
    .banner-image {
        max-width: 90%;
        width: 130px;
        height: 130px;
    }
    
    .banner-text h2 {
        font-size: 1.1rem;
    }
    
    .banner-text h1 {
        font-size: 1.8rem;
    }
	
    /* Móvil: 80% de ancho */
    .products-grid {
        max-width: 80%;
        gap: 1.2rem;
    }
    
    .products-section {
        padding: 1.5rem 4%;
    }
    
    .products-title {
        font-size: 1.7rem;
    }
    
    .products-subtitle {
        font-size: 0.95rem;
    }
    
    .product-header {
        padding: 1rem;
    }
    
    .product-header h3 {
        font-size: 1.4rem;
    }
    
    .product-header .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .product-body {
        padding: 1.2rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .example-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .example-box h4 {
        font-size: 1rem;
    }
    
    .example-box .message-example {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
    }
    
    .combo-section {
        padding: 1.8rem 4%;
    }
    
    .combo-title {
        font-size: 1.7rem;
    }
    
    .combo-subtitle {
        font-size: 0.95rem;
    }
    
    .combo-price {
        font-size: 2rem;
    }
    
    .combo-price span {
        font-size: 1rem;
        display: block;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    
    .combo-savings {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .buy-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        margin-top: 1.5rem;
    }
}

/* ============================================
   SECCIÓN MÉTODOS DE PAGO
   ============================================ */
.payments-section {
    padding: 4rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    position: relative;
    overflow: hidden;
}

.payments-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 25%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.payments-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.payments-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin: 1rem auto;
    border-radius: 2px;
}

.payments-subtitle {
    font-size: 1.3rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Contenedor de países */
.countries-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Ítem de país */
.country-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    border: 2px solid #e8f5e9;
    transition: all 0.3s ease;
}

.country-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Botón del país (header) */
.country-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 100%;
    padding: 1.3rem 1.5rem;
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
    position: relative;
    border: none;
    outline: none;
}

.country-header:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6a75 100%);
}

.country-header::before {
    content: "📍";
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.country-header::after {
    content: "+";
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.country-header[aria-expanded="true"]::after {
    content: "−";
}

/* Contenido de métodos de pago */
.country-content {
    display: none;
    padding: 2rem;
    background: white;
    line-height: 1.7;
}

.country-content.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lista de métodos de pago */
.payment-methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-methods li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    flex-direction: column; /* CORRECCIÓN CLAVE */
}

.payment-methods li:last-child {
    border-bottom: none;
}

.payment-methods li::before {
    content: "💳";
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Iconos específicos por método */
.payment-methods li:nth-child(1)::before { content: "🏦"; }
.payment-methods li:nth-child(2)::before { content: "💸"; }
.payment-methods li:nth-child(3)::before { content: "💳"; }
.payment-methods li:nth-child(4)::before { content: "🌐"; }
.payment-methods li:nth-child(5)::before { content: "₿"; }

/* CORRECCIÓN CLAVE: Hacemos que el texto se rompa en líneas */
.payment-methods li strong,
.payment-methods li p {
    flex: 1;
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

.payment-methods li strong {
    color: #0d6a75;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.payment-methods li p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Nota importante */
.payment-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.payment-note strong {
    color: #856404;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-note p {
    color: #856404;
    margin: 0;
}

/* ============================================
   AJUSTES RESPONSIVOS - PAGOS
   ============================================ */
@media (max-width: 900px) {
    .payments-section {
        padding: 3rem 5%;
    }
    
    .payments-title {
        font-size: 2.2rem;
    }
    
    .payments-subtitle {
        font-size: 1.1rem;
    }
    
    .country-header {
        font-size: 1.15rem;
        padding: 1.1rem 1.3rem;
    }
}

@media (max-width: 600px) {
    .payments-section {
        padding: 2rem 4%;
    }
    
    .payments-title {
        font-size: 1.8rem;
    }
    
    .payments-subtitle {
        font-size: 1rem;
    }
    
    .country-header {
        font-size: 1.05rem;
        padding: 1rem 1.2rem;
    }
    
    .country-header::before {
        font-size: 1rem;
    }
    
    .country-header::after {
        font-size: 1.5rem;
    }
    
    .country-content {
        padding: 1.5rem;
    }
    
    .payment-methods li {
        padding: 0.8rem 0;
        padding-left: 2rem;
        font-size: 0.9rem;
    }
    
    .payment-methods li::before {
        font-size: 1rem;
        top: 0.8rem;
    }
    
    .payment-note {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* ============================================
   SECCIÓN CTA FINAL - WHATSAPP
   ============================================ */
.cta-section {
    padding: 5rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #0d6a75 0%, #0b5a63 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    opacity: 0.95;
}

/* Advertencia de filtrado */
.filter-warning {
    background: rgba(255,255,255,0.15);
    border-left: 4px solid #ffc107;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem auto 2.5rem;
    max-width: 700px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.filter-warning strong {
    display: block;
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.filter-warning p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Botón principal de WhatsApp */
.whatsapp-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 60px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-align: center;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-button::before {
    content: "💬";
    margin-right: 0.8rem;
    font-size: 1.4rem;
    vertical-align: middle;
}

.whatsapp-button::after {
    content: "";
    margin-left: 0.8rem;
    font-size: 1.4rem;
    vertical-align: middle;
}

/* Beneficios rápidos */
.benefits-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.benefit-item strong {

    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   AJUSTES RESPONSIVOS - CTA
   ============================================ */
@media (max-width: 900px) {
    .cta-section {
        padding: 4rem 5%;
    }
    
    .cta-title {
        font-size: 2.4rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
    }
    
    .whatsapp-button {
        padding: 1.2rem 3rem;
        font-size: 1.4rem;
    }
    
    .benefits-list {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 3rem 4%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-warning {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-button {
        padding: 1rem 2.5rem;
        font-size: 1.3rem;
        width: 90%;
    }
    
    .benefits-list {
        margin-top: 2rem;
    }
    
    .benefit-item strong {
        font-size: 1.5rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
}
/* ============================================
   SECCIÓN PRECIOS - 3 OPCIONES
   ============================================ */
.prices-section {
    padding: 2rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.prices-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.prices-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.prices-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin: 1rem auto;
    border-radius: 2px;
}

.prices-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Grid de precios - 3 columnas */
.prices-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Tarjeta de precio */
.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    border: 3px solid transparent;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Badge de popularidad */
.price-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.price-badge.best-value {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Header de la tarjeta */
.price-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 3px solid #25D366;
}

.price-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price-header .tag {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Precio grande */
.price-amount {
    padding: 2rem;
    background: white;
}

.price-amount .price {
    font-size: 4rem;
    font-weight: 900;
    color: #25D366;
    margin: 0;
}

.price-amount .period {
    font-size: 1.1rem;
    color: #555;
    display: block;
    margin-top: 0.5rem;
}

.price-amount .original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-top: 0.5rem;
}

.price-amount .savings {
    background: #d4edda;
    color: #155724;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Lista de características */
.price-features {
    padding: 1.5rem;
    background: #f8f9fa;
    text-align: left;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Botón de compra */
.price-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 90%;
    max-width: 250px;
}

.price-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.price-button::after {
    content: "";
    margin-left: 0.5rem;
}

/* Tarjeta destacada (Pack de 4) */
.price-card.popular {
    border-color: #25D366;
    transform: scale(1.05);
}

.price-card.popular .price-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.price-card.popular .price-header h3,
.price-card.popular .price-header .tag {
    color: white;
}

.price-card.popular .price-amount .price {
    color: #128C7E;
    font-size: 4.5rem;
}

.price-card.popular .price-button {
    background: linear-gradient(135deg, #128C7E, #0d6a75);
}

/* ============================================
   AJUSTES RESPONSIVOS - PRECIOS
   ============================================ */
@media (max-width: 900px) {
    .prices-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card.popular {
        transform: scale(1.02);
    }
    
    .price-card {
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .prices-section {
        padding: 3rem 4%;
    }
    
    .prices-title {
        font-size: 2rem;
    }
    
    .prices-subtitle {
        font-size: 1.1rem;
    }
    
    .price-card {
        max-width: 100%;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .price-amount .price {
        font-size: 3.5rem;
    }
    
    .price-card.popular .price-amount .price {
        font-size: 4rem;
    }
    
    .price-badge {
        top: 10px;
        right: -25px;
        padding: 0.4rem 1.5rem;
        font-size: 0.8rem;
    }
}
/* ============================================
   FOOTER - PIE DE PÁGINA
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0d6a75 0%, #0b5a63 100%);
    padding: 3rem 5% 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-description {
    text-align: center;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: white;
}

.footer-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ============================================
   DESCARGO DE RESPONSABILIDAD
   ============================================ */
.disclaimer-section {
    background: #f8f9fa;
    padding: 2rem 5%;
    border-top: 3px solid #25D366;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.disclaimer-content strong {
    color: #2c7a5f;
    font-weight: 700;
}

/* ============================================
   AJUSTES RESPONSIVOS - FOOTER
   ============================================ */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 2rem 4% 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
    }
}
/* ============================================
   IMAGEN EN SECCIÃ“N PRECIOS - CENTRADA
   ============================================ */
.prices-section {
    padding: 5rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.prices-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.prices-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin: 1rem auto;
    border-radius: 2px;
}

.prices-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Imagen de Carlos en precios */
.prices-hero-image {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 3rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.prices-hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.prices-hero-image img:hover {
    transform: scale(1.02);
}

/* Grid de precios - 3 columnas */
.prices-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Tarjeta de precio */
.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    border: 3px solid transparent;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Badge de popularidad */
.price-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.price-badge.best-value {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Header de la tarjeta */
.price-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 3px solid #25D366;
}

.price-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price-header .tag {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Precio grande */
.price-amount {
    padding: 2rem;
    background: white;
}

.price-amount .price {
    font-size: 4rem;
    font-weight: 900;
    color: #25D366;
    margin: 0;
}

.price-amount .period {
    font-size: 1.1rem;
    color: #555;
    display: block;
    margin-top: 0.5rem;
}

.price-amount .original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-top: 0.5rem;
}

.price-amount .savings {
    background: #d4edda;
    color: #155724;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Lista de características */
.price-features {
    padding: 1.5rem;
    background: #f8f9fa;
    text-align: left;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* BotÃ³n de compra */
.price-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 90%;
    max-width: 250px;
}

.price-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.price-button::after {
    content: "?";
    margin-left: 0.5rem;
}

/* Tarjeta destacada (Pack de 4) */
.price-card.popular {
    border-color: #25D366;
    transform: scale(1.05);
}

.price-card.popular .price-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.price-card.popular .price-header h3,
.price-card.popular .price-header .tag {
    color: white;
}

.price-card.popular .price-amount .price {
    color: #128C7E;
    font-size: 4.5rem;
}

.price-card.popular .price-button {
    background: linear-gradient(135deg, #128C7E, #0d6a75);
}

/* ============================================
   AJUSTES RESPONSIVOS - PRECIOS
   ============================================ */
@media (max-width: 900px) {
    .prices-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card.popular {
        transform: scale(1.02);
    }
    
    .price-card {
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    
    .prices-hero-image {
        max-width: 300px;
        margin: 1.5rem auto 2rem;
    }
}

@media (max-width: 600px) {
    .prices-section {
        padding: 3rem 4%;
    }
    
    .prices-title {
        font-size: 2rem;
    }
    
    .prices-subtitle {
        font-size: 1.1rem;
    }
    
    .prices-hero-image {
        max-width: 250px;
        margin: 1rem auto 1.5rem;
    }
    
    .price-card {
        max-width: 100%;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .price-amount .price {
        font-size: 3.5rem;
    }
    
    .price-card.popular .price-amount .price {
        font-size: 4rem;
    }
    
    .price-badge {
        top: 10px;
        right: -25px;
        padding: 0.4rem 1.5rem;
        font-size: 0.8rem;
    }
}
/* ============================================
   SECCIÃ“N PREGUNTAS PERSONALIZADAS
   ============================================ */

.questions-section {
    padding: 5rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #0d6a75 0%, #0b5a63 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.questions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.questions-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.questions-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    opacity: 0.95;
}

/* Caja de preguntas frecuentes vs personalizadas */
.questions-box {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 700px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.questions-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.questions-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.questions-box li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}

.questions-box li::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Botón de WhatsApp grande */
.whatsapp-questions-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 60px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-align: center;
}

.whatsapp-questions-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-questions-button::before {
    content: "??";
    margin-right: 0.8rem;
    font-size: 1.3rem;
    vertical-align: middle;
}

.whatsapp-questions-button::after {
    content: "?";
    margin-left: 0.8rem;
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Beneficios adicionales */
.questions-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.benefit-item-questions {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    min-width: 200px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.benefit-item-questions strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-item-questions span {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   AJUSTES RESPONSIVOS - PREGUNTAS
   ============================================ */
@media (max-width: 900px) {
    .questions-section {
        padding: 4rem 5%;
    }
    
    .questions-title {
        font-size: 2.2rem;
    }
    
    .questions-subtitle {
        font-size: 1.2rem;
    }
    
    .whatsapp-questions-button {
        padding: 1.2rem 3rem;
        font-size: 1.3rem;
    }
    
    .questions-benefits {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item-questions {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .questions-section {
        padding: 3rem 4%;
    }
    
    .questions-title {
        font-size: 1.8rem;
    }
    
    .questions-subtitle {
        font-size: 1.1rem;
    }
    
    .questions-box {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-questions-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        width: 90%;
    }
    
    .questions-benefits {
        margin-top: 2rem;
    }
    
    .benefit-item-questions strong {
        font-size: 1.5rem;
    }
    
    .benefit-item-questions span {
        font-size: 0.9rem;
    }
}

/* ============================================
   NOTIFICACIÓN SOCIAL PROOF - CON BANDERAS
   ============================================ */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    padding: 0.9rem 1.1rem;
    display: none;
    z-index: 1000;
    max-width: 320px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s, transform 0.4s;
    font-family: 'Poppins', sans-serif;
    border-left: 3px solid #25D366;
    font-size: 0.95rem;
}

.notification.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.check-icon {
    display: inline-block;
    background: #25D366;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 0.6rem;
    font-weight: bold;
    font-size: 0.85rem;
}

.notification-content {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
    display: inline-block;
    vertical-align: middle;
}

.notification-content strong {
    color: #25D366;
    font-weight: 700;
}

/* ============================================
   AJUSTES RESPONSIVOS - NOTIFICACIÃ“N CON BANDERAS
   ============================================ */
@media (max-width: 768px) {
    .notification {
        bottom: 15px;
        right: 15px;
        max-width: 280px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .notification-content {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .notification {
        max-width: 250px;
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .check-icon {
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 0.75rem;
        margin-right: 0.4rem;
    }
    
    .notification-content {
        font-size: 0.85rem;
        line-height: 1.25;
    }
}
/* ============================================
   SECCIÓN PLANTILLA GRATIS
   ============================================ */
.free-template-section {
    padding: 5rem 5%;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.free-template-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.free-template-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.free-template-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    margin: 1rem auto;
    border-radius: 2px;
}

.free-template-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Contenedor principal */
.free-template-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid #25D366;
}

/* Icono grande */
.free-template-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #25D366;
}

/* Beneficios */
.free-template-benefits {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    border-left: 4px solid #25D366;
}

.free-template-benefits h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.free-template-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.free-template-benefits li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.5;
}

.free-template-benefits li::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Botones de acción */
.free-template-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botón de descarga */
.download-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.download-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.download-button::before {
    content: "";
    margin-right: 0.8rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Botón de YouTube */
.youtube-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.youtube-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.youtube-button::before {
    content: "";
    margin-right: 0.8rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Advertencia */
.free-template-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.95rem;
    text-align: left;
}

.free-template-warning strong {
    display: block;
    color: #856404;
    margin-bottom: 0.5rem;
}

.free-template-warning p {
    margin: 0;
    color: #856404;
}

/* ============================================
   AJUSTES RESPONSIVOS - PLANTILLA GRATIS
   ============================================ */
@media (max-width: 900px) {
    .free-template-section {
        padding: 3rem 5%;
    }
    
    .free-template-title {
        font-size: 2.2rem;
    }
    
    .free-template-subtitle {
        font-size: 1.1rem;
    }
    
    .free-template-container {
        padding: 2rem;
    }
    
    .free-template-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-button,
    .youtube-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .free-template-section {
        padding: 2rem 4%;
    }
    
    .free-template-title {
        font-size: 1.8rem;
    }
    
    .free-template-subtitle {
        font-size: 1rem;
    }
    
    .free-template-container {
        padding: 1.5rem;
    }
    
    .free-template-icon {
        font-size: 3rem;
    }
    
    .free-template-benefits {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .download-button,
    .youtube-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .free-template-warning {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

